associativity - définition. Qu'est-ce que associativity
Diclib.com
Dictionnaire ChatGPT
Entrez un mot ou une phrase dans n'importe quelle langue 👆
Langue:

Traduction et analyse de mots par intelligence artificielle ChatGPT

Sur cette page, vous pouvez obtenir une analyse détaillée d'un mot ou d'une phrase, réalisée à l'aide de la meilleure technologie d'intelligence artificielle à ce jour:

  • comment le mot est utilisé
  • fréquence d'utilisation
  • il est utilisé plus souvent dans le discours oral ou écrit
  • options de traduction de mots
  • exemples d'utilisation (plusieurs phrases avec traduction)
  • étymologie

Qu'est-ce (qui) est associativity - définition

PROPERTY OF BINARY OPERATIONS ALLOWING SEQUENCES OF OPERATIONS TO BE REGROUPED WITHOUT CHANGING THEIR VALUE
Associative; Associative (algebra); Associative law; Left associative operator; Associative operation; Associative Property (mathematics); Associative Property; Nonassociative; Associative multiplication; Associative Law; Ascociative; Association (mathematics); Associativty; Non-associativity; Associativity; Generalized associative law; Non-associative; Antiassociative algebra
  • The addition of real numbers is associative.

associativity         
<programming> The property of an operator that says whether a sequence of three or more expressions combined by the operator will be evaluated from left to right (left associative) or right to left (right associative). For example, in Perl, the lazy and operator && is left associative so in the expression: $i >= 0 && $x[$i] >= 0 && $y[$x[$i]] == 0 the left-most && is evaluated first, whereas = is right associative, so in $a = $b = 42 the right-most assignment is performed first. (2007-06-16)
Operator associativity         
PROPERTY THAT DETERMINES HOW OPERATORS OF THE SAME PRECEDENCE ARE GROUPED IN THE ABSENCE OF PARENTHESES
Right associative operator; Right associative; Left-associative; Right-associative; Left associative; Left associativity; Right associativity
In programming language theory, the associativity of an operator is a property that determines how operators of the same precedence are grouped in the absence of parentheses. If an operand is both preceded and followed by operators (for example, ^ 3 ^), and those operators have equal precedence, then the operand may be used as input to two different operations (i.
associative         
Associative thoughts are things that you think of because you see, hear, or think of something that reminds you of those things or which you associate with those things.
The associative guilt was ingrained in his soul...
ADJ: usu ADJ n

Wikipédia

Associative property

In mathematics, the associative property is a property of some binary operations, which means that rearranging the parentheses in an expression will not change the result. In propositional logic, associativity is a valid rule of replacement for expressions in logical proofs.

Within an expression containing two or more occurrences in a row of the same associative operator, the order in which the operations are performed does not matter as long as the sequence of the operands is not changed. That is (after rewriting the expression with parentheses and in infix notation if necessary), rearranging the parentheses in such an expression will not change its value. Consider the following equations:

Even though the parentheses were rearranged on each line, the values of the expressions were not altered. Since this holds true when performing addition and multiplication on any real numbers, it can be said that "addition and multiplication of real numbers are associative operations".

Associativity is not the same as commutativity, which addresses whether the order of two operands affects the result. For example, the order does not matter in the multiplication of real numbers, that is, a × b = b × a, so we say that the multiplication of real numbers is a commutative operation. However, operations such as function composition and matrix multiplication are associative, but (generally) not commutative.

Associative operations are abundant in mathematics; in fact, many algebraic structures (such as semigroups and categories) explicitly require their binary operations to be associative.

However, many important and interesting operations are non-associative; some examples include subtraction, exponentiation, and the vector cross product. In contrast to the theoretical properties of real numbers, the addition of floating point numbers in computer science is not associative, and the choice of how to associate an expression can have a significant effect on rounding error.